home *** CD-ROM | disk | FTP | other *** search
/ QuickTime for the Web (2nd Edition) / QuickTime for the Web (2nd Edition).iso / pc / Examples / Audio / Imaginationmusic / site / open_win.js < prev    next >
Encoding:
Text File  |  2001-09-10  |  682 b   |  30 lines

  1. <!--
  2.  
  3. /**************************************************
  4. Author: Eric King
  5.  
  6. URL:    http://redrival.com/eak/index.shtml
  7.  
  8. Name of script:
  9.  
  10.         EAK's NewWindow Script V2
  11.  
  12. leave this info in if you want to use the script.
  13. do not alter or edit this script with out written 
  14. permision. 
  15. **************************************************/
  16.  
  17. var win=null;
  18. function NewWindow(mypage,myname,w,h,scroll,pos){
  19.  
  20.     
  21.     if((pos!="center" && pos!="random") || pos==null){
  22.         LeftPosition=0;
  23.         TopPosition=20}
  24.  
  25.     settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
  26.     win=window.open(mypage,myname,settings);
  27.     if(win.focus){win.focus();}}
  28.  
  29. // -->
  30.